/-docs ...
/-docs/api ...
Document.ts
Drive.ts
Folder.ts
/-editor
/-files
/-files-old
/-fs
/-fs/api
/-imports
/-layout
/-storage
/-storage/attached
/-storage/attached/api
DetectStorage.ts
LoadStorage.ts
LoadStorageRecipient.ts
UpdateStorage.ts
/-storage/attached/indexedDB
/-storage/attached/localStorage
/-storage/attached/webSQL
/-tests
/-typings
TypeScriptService.ts
functions.ts
ko.ts
persistence.ts
shell.ts
teapo.html
teapo.js
teapo.ts
xxxxxxxxxx
 
1
module teapo.docs {
2
3
  export class Document {
4
5
    fullPath: string;
6
7
    remove(): void {
8
      throw new Error('Not implemented.');
9
    }
10
11
    getProperty(name: string): string {
12
      throw new Error('Not implemented.');
13
    }
14
15
    setProperty(name: string, value: string): void {
16
      throw new Error('Not implemented.');
17
    }
18
19
  }
20
21
}
15:42